home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 101-125 / scopedisk114 / dgplot / install_dgplot < prev    next >
AmigaDOS Script File  |  1995-03-19  |  1KB  |  44 lines

  1. .key trgt
  2. .def trgt sys:
  3. ;
  4. echo "This script file installs DGplot and the support files"
  5. echo "on to your WorkBench disk.  This could take up to 69K of disk space."
  6. echo "Make sure you are using a COPY of your WorkBench disk!!!."
  7. ask "Continue Y/N ?" "Y" "N"
  8. ;
  9. IF WARN
  10. ;
  11.   IF EXISTS LIBS:arp.library
  12.      echo "arp.library is already there."
  13.   ELSE
  14.      echo "copying arp.library to LIBS:"
  15.      copy arp.library libs:
  16.   ENDIF
  17. ;
  18.   IF EXISTS S:FastLib
  19.      echo "FastLib is already there."
  20.   ELSE
  21.      echo "copying FastLib to S:"
  22.      copy FastLib S:
  23.   ENDIF
  24. ;
  25.   echo "copying this version of DGplot to C:"
  26.   copy DGplot C:
  27. ;
  28.   echo " "
  29.   echo "Make sure to delete any old copies of DGplot that you put"
  30.   echo "somewhere besides your C: directory."
  31.   echo " "
  32.   echo "Remember, you must still put the appropriate printer driver"
  33.   echo "in your S: directory, and rename it `DGprinter', or you may"
  34.   echo "use the `-P PrinterDriver' command line option."
  35.   echo " "
  36.   echo "Finished installing DGplot and support files."
  37.   wait 15
  38. ;
  39. ELSE
  40. ;
  41.    echo "Aborting DGplot installation"
  42. ;
  43. ENDIF
  44.